home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / comm / bbs / maxsutils.lha / MaxUtils / Doorpack101.lha / ExampleDoor.c < prev    next >
C/C++ Source or Header  |  1993-03-21  |  290b  |  16 lines

  1. #include "DoorPack.h"
  2.  
  3.  
  4. void dmain( void )
  5.     {
  6.     char string[80];
  7.     sendmessage("This is the DoorPack sample door", 1 );
  8.     
  9.     prompt("Enter some text (any text):", string, 80 );
  10.     
  11.     sendmessage("\n\nYou entered:", 0 );
  12.     sendmessage( string, 1 );
  13.     
  14.     hotkey( "Hit any key to exit...", string );
  15.     }
  16.